home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / vector.lha / vector / rotmatrix.h < prev    next >
C/C++ Source or Header  |  1991-11-23  |  220b  |  12 lines

  1. #ifndef __ROTMATRIX_H
  2. #define __ROTMATRIX_H
  3.  
  4. #include <cmatrix.h>
  5.  
  6. Matrix rotate_and_translate(
  7.     const Vector &rot,
  8.     const Vector &trans);
  9. Matrix rotate(const Vector &axis_, float angle);
  10.  
  11. #endif /*__ROTMATRIX_H*/
  12.